Adjust README, Deprecate ThemedTable in favor of ThemedTable2 and Fix ResponsiveRow#134
Merged
Conversation
deprecate(table): mark ThemedTable and related symbols as @deprecated in favor of ThemedTable2 chore(release): bump version to 7.5.28
📋 Changelog SummaryThis PR includes the following changes: 🐛 Bug Fixes
📊 Diff Stats
🤖 Auto-generated by changelog workflow |
…and example ThemedTable references its own deprecated symbols internally (unavoidable until removal in v8.0.0). The example intentionally keeps the legacy usage. Both files get ignore_for_file to silence expected analyzer warnings.
…debar and table2 sidebar.dart uses ThemedTableAvatar and table2/column.dart uses CellTap from the deprecated ThemedTable module — both are intentional and remain until ThemedTable is removed in v8.0.0.
📊 Test Coverage Report🎯 Dart/Flutter
🤖 Generated by coverage workflow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new minor version (7.5.28) with two main themes: deprecating the original table widgets and improving the
ResponsiveRowwidget's spacing behavior. The deprecated table components are now marked for removal in 8.0.0 in favor ofThemedTable2. Additionally,ResponsiveRow'sspacingparameter now correctly applies to both horizontal and vertical gaps, improving layout consistency on all screen sizes. Documentation, tests, and versioning have been updated accordingly.Deprecation of old table widgets:
ThemedTable,ThemedColumn,ThemedTableAction,ThemedTableAvatar, and related typedefs (ValueBuilder,WidgetBuilder,CellTap,CellColor,ValueBuilder2,kThemedTableCanTrue) as deprecated in favor ofThemedTable2; all will be removed in version 8.0.0. [1] [2] [3] [4] [5]ResponsiveRow spacing improvements:
ResponsiveRowso that thespacingparameter now applies to both horizontal gaps between columns and vertical gaps between wrapped rows (Wrap.runSpacing), fixing previous layout issues on mobile. [1] [2].claude/skills/responsive-row/SKILL.mdand.claude/skills/responsive-row/references/api.mdto clarify thatspacingaffects both axes. [1] [2]ResponsiveRowsets bothspacingandrunSpacingas intended.Versioning and metadata:
7.5.28inpubspec.yamland.claude/plugin.json. [1] [2]CHANGELOG.mdto reflect these changes.Other:
README.mdto use the correct repository name (layrz_theme).